Activation Parameters for Provisioning with Microsoft Tenant ID
The following is an example of the activation parameters to create a new subscription providing the Microsoft Tenant ID instead of the Microsoft domain. In this example for the distribution model, the Partner of Record attestation is sent and the subscription will be created for an existing tenant including an item that does not require offer attestation. If the customer has not signed the customer agreement yet, such information will also need to be sent in the request (as shown in this example). As this request is for an existing tenant, the customer information must not be sent in the request. You can use this example to build your own request by providing the required values for each property or deleting the properties that you do not need according to the information provided in this guide.
Notes:
- Refer to CloudBlue Commerce API documentation for additional information on how to manage orders through the platform's API.
- To see all the possible options for each parameter, see the Purchase Request Parameters section.
"activationParameters": [
{
"key": "tenant_preference",
"value": "existing"
},
{
"key": "microsoft_tenant_id",
"value": "a94c2acd-f6e7-4ff5-cd6c-7d03fa8aa02c",
},
{
"key": "partner_on_record_attestation_accepted",
"structured_value":
{
"attestation_accepted": true
}
},
{
"key": "special_qualifications",
"value": "None"
},
{
"key": "offer_attestation",
"structured_value":
{
"attestation_accepted": false
}
}
]